public class SignFunction{
             public static void main(String args[]) {
                    int intx;
                    intx=0;
                   if(intx>0)
                         System.out.println("The sign of "+intx+" is  + ;");
                   else{
   	            if(intx<0)
                             System.out.println("The sign of "+intx+" is  - ;");
   	            else
                                System.out.println("The sign of "+intx+" is  0 ;");
                   }
          }
}
